Class spinitron\dynamicAr\DynamicActiveQuery

Inheritancespinitron\dynamicAr\DynamicActiveQuery » yii\db\ActiveQuery » yii\db\Query » yii\base\Component » yii\base\Object
Implementsyii\base\Configurable, yii\db\ActiveQueryInterface, yii\db\QueryInterface
Uses Traitsyii\db\ActiveQueryTrait, yii\db\ActiveRelationTrait, yii\db\QueryTrait
Subclassestests\unit\data\CustomerQuery

DynamicActiveQuery represents queries on relational data with structured dynamic attributes.

DynamicActiveQuery adds to yii\db\ActiveQuery a way to write queries that involve the dynamic attributes of DynamicAccessRecord models. This is only possible on a DBMS that supports querying elements in serialized data structures.

Note: In this version of Dynamic AR only Maria 10.0+ is supported in this version.

Dynamic attribtes names must be enclosed in (! … !) (bang-parens) and child attributes in structured dynamic attributes are accessed using dotted notation, for example

$model = Product::find()->where(['(!specs.color!)' => 'blue']);

If there is any need to specify the SQL data type of the dynamic attribute in the query, for example if it appears in an SQL expression that needs this, then the type and dimension can be given in the bang-parents after a | (vertical bar or pipe character) following the attribute name, e.g.

$model = Product::find()->where(['(! price.unit|DECIMAL(9,2) !) = 14.49']);

Allowed datatypes are specified in Maria documentation

Whitespace inside the bang-parens is allowed but not around the vertical bar.

Public Properties

Hide inherited properties

PropertyTypeDescriptionDefined By
$asArray boolean Whether to return each record as an array. yii\db\ActiveQueryTrait
$behaviors \yii\base\Behavior[] List of behaviors attached to this component yii\base\Component
$distinct boolean Whether to select distinct rows of data only. yii\db\Query
$from array The table(s) to be selected from. yii\db\Query
$groupBy array How to group the query results. yii\db\Query
$having string|array The condition to be applied in the GROUP BY clause. yii\db\Query
$indexBy string|callable The name of the column by which the query results should be indexed by. yii\db\QueryTrait
$inverseOf string The name of the relation that is the inverse of this relation. yii\db\ActiveRelationTrait
$join array How to join with other tables. yii\db\Query
$joinWith array A list of relations that this query should be joined with yii\db\ActiveQuery
$limit integer Maximum number of records to be returned. yii\db\QueryTrait
$modelClass string The name of the ActiveRecord class. yii\db\ActiveQueryTrait
$multiple boolean Whether this query represents a relation to more than one record. yii\db\ActiveRelationTrait
$offset integer Zero-based offset from where the records are to be returned. yii\db\QueryTrait
$on string|array The join condition to be used when this query is used in a relational context. yii\db\ActiveQuery
$orderBy array How to sort the query results. yii\db\QueryTrait
$params array List of query parameter values indexed by parameter placeholders. yii\db\Query
$primaryModel yii\db\ActiveRecord The primary model of a relational query. yii\db\ActiveRelationTrait
$select array The columns being selected. yii\db\Query
$selectOption string Additional option that should be appended to the 'SELECT' keyword. yii\db\Query
$sql string The SQL statement to be executed for retrieving AR records. yii\db\ActiveQuery
$union array This is used to construct the UNION clause(s) in a SQL statement. yii\db\Query
$via array|object The query associated with the junction table. yii\db\ActiveRelationTrait
$where string|array Query condition. yii\db\QueryTrait
$with array A list of relations that this query should be performed with yii\db\ActiveQueryTrait

Public Methods

Hide inherited methods

MethodDescriptionDefined By
__call() Calls the named method which is not a class method. yii\base\Component
__clone() Clones internal objects. yii\db\ActiveRelationTrait
__construct() Constructor. yii\db\ActiveQuery
__get() Returns the value of a component property. yii\base\Component
__isset() Checks if a property is set, i.e. defined and not null. yii\base\Component
__set() Sets the value of a component property. yii\base\Component
__unset() Sets a component property to be null. yii\base\Component
addGroupBy() Adds additional group-by columns to the existing ones. yii\db\Query
addOrderBy() Adds additional ORDER BY columns to the query. yii\db\QueryTrait
addParams() Adds additional parameters to be bound to the query. yii\db\Query
addSelect() Add more columns to the SELECT part of the query. yii\db\Query
all() Executes query and returns all results as an array. yii\db\ActiveQuery
andFilterWhere() Adds an additional WHERE condition to the existing one but ignores empty operands. yii\db\QueryTrait
andHaving() Adds an additional HAVING condition to the existing one. yii\db\Query
andOnCondition() Adds an additional ON condition to the existing one. yii\db\ActiveQuery
andWhere() Adds an additional WHERE condition to the existing one. yii\db\QueryTrait
asArray() Sets the asArray() property. yii\db\ActiveQueryTrait
attachBehavior() Attaches a behavior to this component. yii\base\Component
attachBehaviors() Attaches a list of behaviors to the component. yii\base\Component
average() Returns the average of the specified column values. yii\db\Query
batch() Starts a batch query. yii\db\Query
behaviors() Returns a list of behaviors that this component should behave as. yii\base\Component
canGetProperty() Returns a value indicating whether a property can be read. yii\base\Component
canSetProperty() Returns a value indicating whether a property can be set. yii\base\Component
className() Returns the fully qualified name of this class. yii\base\Object
column() Executes the query and returns the first column of the result. yii\db\Query
count() Returns the number of records. yii\db\Query
create() Creates a new Query object and copies its property values from an existing one. yii\db\Query
createCommand() Generate DB command from ActiveQuery with Maria-specific SQL for dynamic columns. spinitron\dynamicAr\DynamicActiveQuery
detachBehavior() Detaches a behavior from the component. yii\base\Component
detachBehaviors() Detaches all behaviors from the component. yii\base\Component
distinct() Sets the value indicating whether to SELECT DISTINCT or not. yii\db\Query
each() Starts a batch query and retrieves data row by row. yii\db\Query
ensureBehaviors() Makes sure that the behaviors declared in behaviors() are attached to this component. yii\base\Component
exists() Returns a value indicating whether the query result contains any row of data. yii\db\Query
filterWhere() Sets the WHERE part of the query but ignores empty operands. yii\db\QueryTrait
findFor() Finds the related records for the specified primary record. yii\db\ActiveRelationTrait
findWith() Finds records corresponding to one or multiple relations and populates them into the primary models. yii\db\ActiveQueryTrait
from() Sets the FROM part of the query. yii\db\Query
getBehavior() Returns the named behavior object. yii\base\Component
getBehaviors() Returns all behaviors attached to this component. yii\base\Component
groupBy() Sets the GROUP BY part of the query. yii\db\Query
hasEventHandlers() Returns a value indicating whether there is any handler attached to the named event. yii\base\Component
hasMethod() Returns a value indicating whether a method is defined. yii\base\Component
hasProperty() Returns a value indicating whether a property is defined for this component. yii\base\Component
having() Sets the HAVING part of the query. yii\db\Query
indexBy() Converts the indexBy column name an anonymous function that writes rows to the result array indexed an attribute name that may be in dotted notation. spinitron\dynamicAr\DynamicActiveQuery
init() Initializes the object. yii\db\ActiveQuery
innerJoin() Appends an INNER JOIN part to the query. yii\db\Query
innerJoinWith() Inner joins with the specified relations. yii\db\ActiveQuery
inverseOf() Sets the name of the relation that is the inverse of this relation. yii\db\ActiveRelationTrait
join() Appends a JOIN part to the query. yii\db\Query
joinWith() Joins with the specified relations. yii\db\ActiveQuery
leftJoin() Appends a LEFT OUTER JOIN part to the query. yii\db\Query
limit() Sets the LIMIT part of the query. yii\db\QueryTrait
max() Returns the maximum of the specified column values. yii\db\Query
min() Returns the minimum of the specified column values. yii\db\Query
off() Detaches an existing event handler from this component. yii\base\Component
offset() Sets the OFFSET part of the query. yii\db\QueryTrait
on() Attaches an event handler to an event. yii\base\Component
onCondition() Sets the ON condition for a relational query. yii\db\ActiveQuery
one() Executes query and returns a single row of result. yii\db\ActiveQuery
orFilterWhere() Adds an additional WHERE condition to the existing one but ignores empty operands. yii\db\QueryTrait
orHaving() Adds an additional HAVING condition to the existing one. yii\db\Query
orOnCondition() Adds an additional ON condition to the existing one. yii\db\ActiveQuery
orWhere() Adds an additional WHERE condition to the existing one. yii\db\QueryTrait
orderBy() Sets the ORDER BY part of the query. yii\db\QueryTrait
params() Sets the parameters to be bound to the query. yii\db\Query
populate() Converts the raw query results into the format as specified by this query. yii\db\ActiveQuery
populateRelation() Finds the related records and populates them into the primary models. yii\db\ActiveRelationTrait
prepare() Maria-specific preparation for building a query that includes a dynamic column. spinitron\dynamicAr\DynamicActiveQuery
rightJoin() Appends a RIGHT OUTER JOIN part to the query. yii\db\Query
scalar() Returns the query result as a scalar value. yii\db\Query
select() Sets the SELECT part of the query. yii\db\Query
sum() Returns the sum of the specified column values. yii\db\Query
trigger() Triggers an event. yii\base\Component
union() Appends a SQL statement using UNION operator. yii\db\Query
via() Specifies the relation associated with the junction table. yii\db\ActiveRelationTrait
viaTable() Specifies the junction table for a relational query. yii\db\ActiveQuery
where() Sets the WHERE part of the query. yii\db\QueryTrait
with() Specifies the relations with which this query should be performed. yii\db\ActiveQueryTrait

Protected Methods

Hide inherited methods

MethodDescriptionDefined By
filterCondition() Removes empty operands from the given query condition. yii\db\QueryTrait
getDotNotatedValue() Returns the value of the element in an array refereced by a dot-notated attribute name. spinitron\dynamicAr\DynamicActiveQuery
isEmpty() Returns a value indicating whether the give value is "empty". yii\db\QueryTrait
normalizeOrderBy() Normalizes format of ORDER BY data yii\db\QueryTrait
queryScalar() Queries a scalar value by setting select() first. yii\db\Query

Events

Hide inherited events

EventTypeDescriptionDefined By
EVENT_INIT \yii\db\Event An event that is triggered when the query is initialized via init(). yii\db\ActiveQuery

Method Details

createCommand() public method

Generate DB command from ActiveQuery with Maria-specific SQL for dynamic columns.

User of DynamicActiveQuery should not normally need to use this method.

History

This implementation is the best I could manage. A dynamic attribute name can appear anywhere that a schema attribute name could appear (select, join, where, ...). It needs to be converted to the Maria SQL using COLUMN_CREATE('name', value, …) for accessing dynamic columns. Because SQL is statically-typed and there is no schema to refer to for dynamic attributes, the accessor SQL must specify the the dyn-col's type, e.g.

WHERE COLUMN_GET(details, 'color' AS CHAR) = 'black'

In which details is the blob column containing all the dynamic columns, 'color' is the name of a dynamic column that may or may not appear in any given table record, and CHAR means the value should be cast to CHAR before it is compared with 'black'. COLUMN_GET(details, 'color' AS CHAR) is the "accessor SQL".

So I faced two problems:

  1. How to identify a dynamic attribute name in an ActiveQuery?
  2. How to choose the type to which it should be cast in the SQL?

The design prociple of DynamicAR is "an attribute that isn't an instance variable, a column and doesn't have a magic get-/setter is assumed to be a dynamic attribute". So, in order to infer from the properties of an AQ instance the attribute names that need to be converted to dynamic column accessor SQL, I need to go through the AQ to identify all the column names and remove those in the schema. But I don't know how to identify column names in an AQ instance. Even if I did, there's problem 2.

The only way I can imagine to infer datatype from an AQ instance is to look at the context. If the attribute is compared with a bound parameter, that's a clue. If it is being used in an SQL function, e.g. CONCAT(), or being compared with a schema column, that suggests something. But if it is on its own in a SELECT then I am stuck. Also stuck if it is compared with another dynamic attribute. This seems fundamentally intractible.

So I decided that the user needs to help DynamicActiveQuery by distinguishing the names of dynamic attributes and by explicitly specifying the type. The format for this:

    (!name|type!)

Omitting type implies the default type: CHAR. Children of dynamic attributes, i.e. array elements, are separated from parents with . (period), e.g. (!address.country|CHAR!). (Spaces are not alowed around the |.) So a user can do:

$blueShirts = Product::find()
    ->where(['category' => Product::SHIRT, '(!color!)' => 'blue'])
    ->all();

$cheapShirts = Product::find()
    ->select(
        ['sale' => 'MAX((!cost|decimal(6,2)!), 0.75 * (!price.wholesale.12|decimal(6,2)!))']
    )
    ->where(['category' => Product::SHIRT])
    ->andWhere('(!price.retail.unit|decimal(6,2)!) < 20.00')
    ->all();

The implementation is like db\Connection's quoting of string and {{string}}. Once the full SQL string is ready, preg_repalce() it. The regex pattern is a bit complex and the replacement callback isn't pretty either. Is there a better way to add to $params in the callback than this? And for the parameter placeholder counter $i?

public \yii\db\Command createCommand ( $db null )
$db null|\yii\db\Connection

The database connection

return \yii\db\Command

The modified SQL statement

getDotNotatedValue() protected method

Returns the value of the element in an array refereced by a dot-notated attribute name.

protected mixed|null getDotNotatedValue ( $array, $attribute )
$array array

An array of attributes and values, possibly nested

$attribute string

The attribute name in dotted notation

return mixed|null

The element in $array referenced by $attribute or null if no such element exists

indexBy() public method

Converts the indexBy column name an anonymous function that writes rows to the result array indexed an attribute name that may be in dotted notation.

public $this indexBy ( $column )
$column callable|string

Name of the column by which the query results should be indexed

prepare() public method

Maria-specific preparation for building a query that includes a dynamic column.

public yii\db\Query prepare ( $builder )
$builder \yii\db\QueryBuilder
throws \yii\base\Exception
throws \yii\base\InvalidConfigException